home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Languages
/
CW MacMindy 1.4
/
Examples
/
debug
/
debug.dyl
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-10
|
235 b
|
17 lines
|
[
TEXT/CWIE
]
module: dylan-user
/*
debug.dyl
shows how to break into the debugger.
*/
define method main (argv0, #rest args)
let z = 1902239164;
print(object-class(z));
print(z);
let x = 1;
let y = x + 1;
break("try \"locals\".");
end;